/* Base Styles and Variables */
:root {
    --primary-blue: #4793AF;
    --primary-orange: #FFC470;
    --primary-red: #DD5746;
    --primary-dark-red: #8B322C;
    --dark-bg: #121212;
    --dark-surface: #1E1E1E;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --neon-glow: 0 0 10px rgba(71, 147, 175, 0.7), 0 0 20px rgba(71, 147, 175, 0.5);
    --orange-glow: 0 0 10px rgba(255, 196, 112, 0.7), 0 0 20px rgba(255, 196, 112, 0.5);
    --red-glow: 0 0 10px rgba(221, 87, 70, 0.7), 0 0 20px rgba(221, 87, 70, 0.5);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden; /* Only hide horizontal overflow */
    overflow-y: auto; /* Allow vertical scrolling */
    cursor: none; /* Hide default cursor for custom cursor */
    height: auto; /* Ensure body expands with content */
    min-height: 100vh; /* Minimum height is the viewport height */
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(71, 147, 175, 0.5);
    border: 2px solid var(--primary-blue);
    box-shadow: var(--neon-glow);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000; /* Increased z-index to ensure visibility */
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-trail {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 196, 112, 0.3);
    pointer-events: none;
    z-index: 9999; /* High z-index to stay visible */
    transition: width 0.1s, height 0.1s, opacity 0.5s;
}

/* Presentation Container */
.presentation-container {
    width: 100vw;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto; /* Changed from visible to auto to enable scrolling */
    background-color: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(71, 147, 175, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(221, 87, 70, 0.1) 0%, transparent 50%);
}

/* Navigation Controls */
.nav-controls {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    z-index: 5000; /* Increased z-index to ensure visibility */
    background-color: rgba(30, 30, 30, 0.7);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 20px; /* Ensure some space from bottom content when scrolling */
}

.nav-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-btn:not(:disabled):hover {
    background-color: rgba(71, 147, 175, 0.2);
    box-shadow: var(--neon-glow);
}

.nav-btn:disabled {
    color: var(--text-secondary);
    opacity: 0.5;
    cursor: not-allowed;
}

.progress-bar {
    height: 4px;
    width: 200px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 0 20px;
    position: relative;
    overflow: hidden;
}

.progress-indicator {
    position: absolute;
    height: 100%;
    width: 10%;
    background-color: var(--primary-blue);
    border-radius: 2px;
    box-shadow: var(--neon-glow);
    transition: width 0.5s ease;
}

/* Slides Container */
.slides-container {
    width: 100%;
    min-height: 100vh;
    height: auto; /* Allow container to grow with content */
    position: relative;
    overflow-y: visible; /* Allow vertical overflow */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh; /* Changed from height to min-height */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    padding-bottom: 100px; /* Extra padding to accommodate navigation and content */
    overflow-y: auto; /* Changed from visible to auto to enable scrolling */
    overflow-x: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    position: relative; /* Change from absolute to relative when active */
    height: auto; /* Allow the active slide to expand based on content */
    overflow-y: auto; /* Ensure scrolling is available when needed */
}

.slide-content {
    max-width: 1200px;
    width: 100%;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: visible; /* Keep as visible to allow content to flow naturally */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 147, 175, 0.3);
    margin: 20px 0; /* Add margin to ensure some spacing at the top and bottom */
}

.slide-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-orange);
    text-shadow: 0 0 10px rgba(255, 196, 112, 0.5);
    position: relative;
}

.slide-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background-color: var(--primary-blue);
    box-shadow: var(--neon-glow);
}

/* Intro Slide Specific Styles */
.intro-slide {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.geometric-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(30deg, var(--dark-surface) 12%, transparent 12.5%, transparent 87%, var(--dark-surface) 87.5%, var(--dark-surface)),
    linear-gradient(150deg, var(--dark-surface) 12%, transparent 12.5%, transparent 87%, var(--dark-surface) 87.5%, var(--dark-surface)),
    linear-gradient(30deg, var(--dark-surface) 12%, transparent 12.5%, transparent 87%, var(--dark-surface) 87.5%, var(--dark-surface)),
    linear-gradient(150deg, var(--dark-surface) 12%, transparent 12.5%, transparent 87%, var(--dark-surface) 87.5%, var(--dark-surface)),
    linear-gradient(60deg, rgba(71, 147, 175, 0.1) 25%, transparent 25.5%, transparent 75%, rgba(71, 147, 175, 0.1) 75%, rgba(71, 147, 175, 0.1)),
    linear-gradient(60deg, rgba(71, 147, 175, 0.1) 25%, transparent 25.5%, transparent 75%, rgba(71, 147, 175, 0.1) 75%, rgba(71, 147, 175, 0.1));
    background-size: 40px 70px;
    background-position: 0 0, 0 0, 20px 35px, 20px 35px, 0 0, 20px 35px;
    opacity: 0.1;
    z-index: 0;
}

.profile-section {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.profile-image-container {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-orange));
    box-shadow: var(--neon-glow);
    animation: pulse 3s infinite alternate;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 3px solid var(--dark-surface);
}

.intro-text {
    flex: 1;
    padding-left: 50px;
    z-index: 1;
}

.title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-orange);
    text-shadow: 0 0 15px rgba(255, 196, 112, 0.6);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.3s;
}

.presenter-info {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.6s;
}

.name {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.role {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
    text-shadow: 0 0 5px rgba(71, 147, 175, 0.5);
}

.bio {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 20px;
}

.academic-background {
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 10px;
    padding: 15px;
    border-left: 3px solid var(--primary-blue);
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.9s;
}

.academic-background h4 {
    color: var(--primary-orange);
    margin-bottom: 12px;
    font-size: 1.2rem;
    text-shadow: 0 0 5px rgba(255, 196, 112, 0.3);
}

.academic-background ul {
    list-style-type: none;
    padding: 0;
}

.academic-background li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
}

.academic-background .degree {
    color: var(--text-primary);
    font-weight: 500;
    margin-right: 8px;
}

.academic-background .status {
    color: var(--primary-red);
    font-style: italic;
}

.academic-background .university {
    color: var(--primary-blue);
    display: block;
    margin-top: 3px;
    margin-left: 15px;
    font-size: 0.9rem;
}

/* Timeline Slide Specific Styles */
.timeline-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 30px;
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
    position: relative;
    margin-bottom: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
}

.timeline-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--neon-glow);
}

.timeline-marker::before {
    content: attr(data-year);
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.timeline-marker:hover, .timeline-marker.active {
    transform: scale(1.3);
    background-color: var(--primary-orange);
    box-shadow: var(--orange-glow);
}

.timeline-content {
    position: relative;
    width: 100%;
    min-height: 500px;
    height: auto; /* Allow content to determine full height */
    overflow: visible;
}

.timeline-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 500px;
    height: auto; /* Allow content to determine height */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(71, 147, 175, 0.2);
    overflow: visible; /* Allow content to expand */
}

.timeline-item.active {
    opacity: 1;
    visibility: visible;
    position: relative; /* Change from absolute to relative when active */
    height: auto; /* Allow content to determine height */
}

.timeline-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-orange);
}

.timeline-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.explanation {
    background-color: rgba(71, 147, 175, 0.1);
    border-left: 3px solid var(--primary-blue);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(10px);
}

.timeline-item.active .explanation {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.explanation p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.explanation p:last-child {
    margin-bottom: 0;
}

.explanation strong {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Flowchart Styles */
.flowchart-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.timeline-item.active .flowchart-container {
    opacity: 1;
    transform: translateY(0);
}

.flowchart-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    padding: 15px;
    width: 140px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(71, 147, 175, 0.3);
    transition: all 0.5s ease;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

.timeline-item.active .flowchart-item:nth-child(1) {
    animation: fadeInUp 0.5s forwards 0.2s;
}

.timeline-item.active .flowchart-item:nth-child(3) {
    animation: fadeInUp 0.5s forwards 0.4s;
}

.timeline-item.active .flowchart-item:nth-child(5) {
    animation: fadeInUp 0.5s forwards 0.6s;
}

.flowchart-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-blue);
}

.flowchart-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: var(--neon-glow);
}

.flowchart-icon i {
    font-size: 24px;
    color: var(--text-primary);
}

.flowchart-item p {
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 0;
    color: var(--text-primary);
}

.flowchart-arrow {
    margin: 0 15px;
    color: var(--primary-blue);
    font-size: 20px;
    opacity: 0;
    transition: all 0.5s ease;
}

.timeline-item.active .flowchart-arrow:nth-child(2) {
    animation: fadeIn 0.5s forwards 0.3s;
}

.timeline-item.active .flowchart-arrow:nth-child(4) {
    animation: fadeIn 0.5s forwards 0.5s;
}

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

.middle-east-context {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(139, 50, 44, 0.2);
    border-radius: 10px;
    border-left: 3px solid var(--primary-red);
}

.middle-east-context h4 {
    color: var(--primary-red);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Prompts Slide Specific Styles */
.prompts-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.prompt-example {
    flex: 0 0 48%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ineffective {
    border: 1px solid rgba(221, 87, 70, 0.3);
}

.effective {
    border: 1px solid rgba(71, 147, 175, 0.3);
}

.chat-ui {
    background-color: var(--dark-surface);
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.live-chat-ui {
    background-color: var(--dark-surface);
    border-radius: 15px 15px 0 0;
    overflow: visible; /* Allow content to flow naturally */
}

.chat-header {
    background-color: rgba(30, 30, 30, 0.9);
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-header h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.ineffective .chat-header h3 {
    color: var(--primary-red);
}

.effective .chat-header h3 {
    color: var(--primary-blue);
}

.chat-messages {
    padding: 15px;
    max-height: none; /* No height restriction */
    overflow-y: visible; /* Ensure content flows naturally */
    width: 100%;
    height: auto; /* Allow content to determine height */
}

.user-message, .ai-message {
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 10px;
    max-width: 90%;
}

.user-message {
    background-color: rgba(71, 147, 175, 0.2);
    margin-left: auto;
    border-bottom-right-radius: 0;
}

.ai-message {
    background-color: rgba(30, 30, 30, 0.7);
    border-bottom-left-radius: 0;
}

.typing-effect {
    overflow: hidden;
    border-right: 2px solid var(--primary-blue);
    white-space: normal;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

.chat-input {
    display: flex;
    padding: 10px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 1rem;
}

.chat-input input::placeholder {
    color: var(--text-secondary);
}

.send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background-color: var(--primary-orange);
    box-shadow: var(--orange-glow);
}

.prompt-analysis {
    padding: 15px;
    background-color: rgba(30, 30, 30, 0.5);
}

.prompt-analysis h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.ineffective .prompt-analysis h4 {
    color: var(--primary-red);
}

.effective .prompt-analysis h4 {
    color: var(--primary-blue);
}

.prompt-analysis ul {
    padding-left: 20px;
}

.prompt-analysis li {
    margin-bottom: 5px;
    color: var(--text-secondary);
}

.interactive-prompt-builder {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(71, 147, 175, 0.3);
}

.interactive-prompt-builder h3 {
    margin-bottom: 15px;
    color: var(--primary-orange);
}

.prompt-components {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.component {
    padding: 10px 15px;
    background-color: rgba(71, 147, 175, 0.2);
    border-radius: 5px;
    cursor: grab;
    transition: all 0.3s ease;
    border: 1px dashed rgba(71, 147, 175, 0.5);
    user-select: none; /* Prevent text selection during drag */
    -webkit-user-drag: element; /* Better drag support for Safari */
    touch-action: none; /* Better support for touch devices */
}

.component:hover {
    background-color: rgba(71, 147, 175, 0.3);
    box-shadow: var(--neon-glow);
    transform: scale(1.02);
}

.prompt-builder-area {
    min-height: 100px;
    padding: 15px;
    border: 2px dashed rgba(255, 196, 112, 0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    background-color: rgba(255, 196, 112, 0.05);
}

.prompt-builder-area::after {
    content: 'Drop Zone';
    position: absolute;
    bottom: 5px;
    right: 10px;
    font-size: 0.7rem;
    color: rgba(255, 196, 112, 0.5);
    pointer-events: none;
}

.prompt-builder-area.drag-over {
    background-color: rgba(255, 196, 112, 0.15);
    border: 2px dashed var(--primary-orange);
    box-shadow: 0 0 15px rgba(255, 196, 112, 0.4);
    transform: scale(1.01);
}

.prompt-builder-area p {
    color: var(--text-secondary);
    font-style: italic;
}

/* Improved component styles */
.component.dragging {
    opacity: 0.6;
    transform: scale(1.05);
}

.component-clicked {
    animation: pulse 0.3s ease-in-out;
}

/* Mobile mode styles */
.mobile-mode-toggle {
    background-color: rgba(71, 147, 175, 0.2);
    border: 1px solid rgba(71, 147, 175, 0.5);
    color: var(--text-primary);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-mode-toggle:hover {
    background-color: rgba(71, 147, 175, 0.3);
}

.mobile-mode .component {
    position: relative;
}

.mobile-mode .component:after {
    content: '+';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-orange);
    font-weight: bold;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Techniques Slide Specific Styles */
.techniques-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.technique-category {
    padding: 20px;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(71, 147, 175, 0.2);
}

.technique-category h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-orange);
}

.technique-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.technique-item {
    padding: 15px;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    border-left: 3px solid var(--primary-blue);
}

.technique-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-blue);
}

.technique-item p {
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 10px;
}

.daily-example {
    margin-top: 10px;
    padding: 10px;
    background-color: rgba(255, 196, 112, 0.08);
    border-radius: 6px;
    border-left: 2px solid var(--primary-orange);
}

.daily-example p {
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.daily-example strong {
    color: var (--primary-orange);
}

.technique-demo {
    grid-column: 1 / -1;
    padding: 20px;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 196, 112, 0.2);
}

.technique-demo h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-orange);
}

.demo-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.demo-btn {
    padding: 10px 15px;
    background-color: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(71, 147, 175, 0.3);
    border-radius: 5px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-btn:hover, .demo-btn.active {
    background-color: rgba(71, 147, 175, 0.2);
    color: var(--text-primary);
    box-shadow: var(--neon-glow);
}

.demo-content {
    position: relative;
    min-height: 200px;
    height: auto; /* Allow content to determine the height */
    overflow: visible; /* Ensure content can expand */
}

.demo-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto; /* Allow content to determine height */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.demo-item.active {
    opacity: 1;
    visibility: visible;
    position: relative; /* Change from absolute to relative when active */
    height: auto; /* Ensure height is determined by content */
}

.demo-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.demo-prompt {
    padding: 15px;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(71, 147, 175, 0.3);
}

.demo-prompt p {
    line-height: 1.6;
    color: var(--text-secondary);
}

.highlight {
    color: var(--primary-orange);
    text-shadow: 0 0 5px rgba(255, 196, 112, 0.3);
}

/* Best Techniques Slide Specific Styles */
.live-demo-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: none; /* Remove any height restriction */
    overflow: visible; /* Ensure content doesn't get clipped */
}

.example-btn {
    padding: 10px 15px;
    background-color: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(71, 147, 175, 0.3);
    border-radius: 5px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.example-btn:hover, .example-btn.active {
    background-color: rgba(71, 147, 175, 0.2);
    color: var(--text-primary);
    box-shadow: var(--neon-glow);
}

.example-content {
    display: none;
}

.example-content.active {
    display: block;
    position: relative; /* Ensure proper document flow */
    height: auto; /* Allow content to determine height */
    overflow: visible; /* Ensure content can expand */
}

.step-container {
    position: relative;
    min-height: auto; /* Auto height based on content */
    width: 100%;
    overflow: visible; /* Allow content to flow naturally */
}

.step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
    overflow: visible; /* Allow content to expand */
    height: auto; /* Allow content to determine height */
}

.step.active {
    opacity: 1;
    visibility: visible;
    position: relative; /* Change from absolute to relative when active */
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.step-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 30px; /* Added bottom margin */
}

.step-indicators {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.step-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.step-indicator.active {
    background-color: var(--primary-blue);
    box-shadow: var(--neon-glow);
}

.step-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-btn:not(:disabled):hover {
    background-color: rgba(71, 147, 175, 0.2);
    box-shadow: var(--neon-glow);
}

.step-btn:disabled {
    color: var(--text-secondary);
    opacity: 0.5;
    cursor: not-allowed;
}

.key-takeaways {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    border-left: 3px solid var(--primary-orange);
}

.key-takeaways h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-orange);
}

.key-takeaways ul {
    padding-left: 20px;
}

.key-takeaways li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.best-techniques-slide {
    overflow: visible;
}

/* AI Agent Evolution Slide Styles */
.ai-agent-evolution-slide {
    overflow: visible; /* Ensure the content doesn't get clipped */
}

.agent-flowchart-container {
    margin-top: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flowchart-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary-orange);
    text-shadow: 0 0 8px rgba(255, 196, 112, 0.4);
}

.travel-agent-flowchart {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    width: 100%;
    position: relative;
}

.agent-step {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    padding: 20px;
    width: 180px;
    text-align: center;
    border: 1px solid rgba(71, 147, 175, 0.3);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.input-step {
    border-color: var(--primary-orange);
    animation: fadeInStep 0.5s forwards 0.1s;
}

.research-step {
    animation: fadeInStep 0.5s forwards 0.5s;
}

.planning-step {
    animation: fadeInStep 0.5s forwards 0.9s;
}

.confirm-step {
    animation: fadeInStep 0.5s forwards 1.3s;
}

.booking-step {
    animation: fadeInStep 0.5s forwards 1.7s;
}

.payment-step {
    animation: fadeInStep 0.5s forwards 2.1s;
}

.finalize-step {
    border-color: var (--primary-blue);
    animation: fadeInStep 0.5s forwards 2.5s;
}

.agent-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: var(--neon-glow);
    transition: all 0.3s ease;
}

.agent-step:hover .agent-icon {
    transform: scale(1.1);
    box-shadow: var(--orange-glow);
}

.agent-icon i {
    font-size: 24px;
    color: var(--text-primary);
}

.agent-step h4 {
    color: var(--primary-orange);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.agent-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.agent-arrow {
    color: var(--primary-blue);
    font-size: 24px;
    opacity: 0;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.travel-agent-flowchart .agent-arrow:nth-child(2) {
    animation: fadeInArrow 0.5s forwards 0.3s;
}

.travel-agent-flowchart .agent-arrow:nth-child(4) {
    animation: fadeInArrow 0.5s forwards 0.7s;
}

.travel-agent-flowchart .agent-arrow:nth-child(6) {
    animation: fadeInArrow 0.5s forwards 1.1s;
}

.travel-agent-flowchart .agent-arrow:nth-child(8) {
    animation: fadeInArrow 0.5s forwards 1.5s;
}

.travel-agent-flowchart .agent-arrow:nth-child(10) {
    animation: fadeInArrow 0.5s forwards 1.9s;
}

.travel-agent-flowchart .agent-arrow:nth-child(12) {
    animation: fadeInArrow 0.5s forwards 2.3s;
}

.agent-tools-section {
    margin-top: 40px;
    padding: 30px;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    width: 100%;
    border: 1px solid rgba(71, 147, 175, 0.2);
    position: relative;
    overflow: hidden;
}

.agent-tools-section h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--primary-blue);
    text-shadow: 0 0 8px rgba(71, 147, 175, 0.4);
    text-align: center;
}

.decision-process {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.decision-step {
    display: flex;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    padding: 15px;
    border-left: 3px solid var(--primary-blue);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInStep 0.5s forwards 2.9s;
}

.decision-process .decision-step:nth-child(2) {
    animation: fadeInStep 0.5s forwards 3.1s;
}

.decision-process .decision-step:nth-child(3) {
    animation: fadeInStep 0.5s forwards 3.3s;
}

.decision-process .decision-step:nth-child(4) {
    animation: fadeInStep 0.5s forwards 3.5s;
}

.decision-icon {
    background-color: rgba(255, 196, 112, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.decision-icon i {
    font-size: 20px;
    color: var(--primary-orange);
}

.decision-content h4 {
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.decision-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Animation keyframes for AI Agent flowchart */
@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInArrow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive styles for AI Agent Evolution slide */
@media (max-width: 1200px) {
    .travel-agent-flowchart {
        flex-direction: column;
    }
    
    .agent-arrow {
        transform: rotate(90deg);
    }
    
    .decision-process {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .agent-step {
        width: 160px;
        padding: 15px;
    }
    
    .agent-icon {
        width: 50px;
        height: 50px;
    }
    
    .agent-icon i {
        font-size: 20px;
    }
    
    .flowchart-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .agent-step {
        width: 140px;
        padding: 10px;
    }
    
    .agent-icon {
        width: 40px;
        height: 40px;
    }
    
    .agent-icon i {
        font-size: 16px;
    }
    
    .flowchart-title {
        font-size: 1.3rem;
    }
    
    .agent-step h4 {
        font-size: 0.9rem;
    }
    
    .agent-step p {
        font-size: 0.8rem;
    }
}

/* AI Agent vs Traditional Workflow Comparison */
.workflow-comparison {
    margin-top: 40px;
    padding: 30px;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    width: 100%;
    border: 1px solid rgba(71, 147, 175, 0.2);
    position: relative;
    overflow: hidden;
}

.workflow-comparison h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--primary-orange);
    text-shadow: 0 0 8px rgba(255, 196, 112, 0.4);
    text-align: center;
}

.comparison-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}

.comparison-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(30, 30, 30, 0.7);
}

.traditional {
    border-left: 3px solid var(--primary-red);
}

.ai-agent {
    border-left: 3px solid var(--primary-blue);
}

.comparison-column h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
}

.traditional h4 {
    color: var(--primary-red);
}

.ai-agent h4 {
    color: var(--primary-blue);
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    animation: fadeIn 0.5s forwards;
    opacity: 0;
}

.traditional .comparison-item:nth-child(2) {
    animation-delay: 3.7s;
}

.traditional .comparison-item:nth-child(3) {
    animation-delay: 3.9s;
}

.traditional .comparison-item:nth-child(4) {
    animation-delay: 4.1s;
}

.traditional .comparison-item:nth-child(5) {
    animation-delay: 4.3s;
}

.traditional .comparison-item:nth-child(6) {
    animation-delay: 4.5s;
}

.ai-agent .comparison-item:nth-child(2) {
    animation-delay: 3.8s;
}

.ai-agent .comparison-item:nth-child(3) {
    animation-delay: 4.0s;
}

.ai-agent .comparison-item:nth-child(4) {
    animation-delay: 4.2s;
}

.ai-agent .comparison-item:nth-child(5) {
    animation-delay: 4.4s;
}

.ai-agent .comparison-item:nth-child(6) {
    animation-delay: 4.6s;
}

.comparison-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.traditional .comparison-icon {
    background-color: rgba(221, 87, 70, 0.2);
}

.ai-agent .comparison-icon {
    background-color: rgba(71, 147, 175, 0.2);
}

.traditional .comparison-icon i {
    color: var(--primary-red);
    font-size: 18px;
}

.ai-agent .comparison-icon i {
    color: var(--primary-blue);
    font-size: 18px;
}

.comparison-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.comparison-item p strong {
    color: var(--text-primary);
}

.comparison-divider {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.comparison-divider::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, 
        rgba(71, 147, 175, 0.1), 
        rgba(71, 147, 175, 0.6), 
        rgba(221, 87, 70, 0.6), 
        rgba(221, 87, 70, 0.1));
}

.vs-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 1;
    box-shadow: 0 0 15px rgba(71, 147, 175, 0.7);
    animation: pulse 2s infinite alternate;
}

.key-difference {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(255, 196, 112, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--primary-orange);
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    animation: fadeInStep 0.5s forwards 4.8s;
}

.key-difference-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.key-difference-icon i {
    font-size: 28px;
    color: var(--text-primary);
}

.key-difference p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
}

.key-difference p strong {
    color: var(--primary-orange);
}

/* Responsive styles for AI Agent comparison */
@media (max-width: 1200px) {
    .comparison-container {
        flex-direction: column;
    }
    
    .comparison-divider {
        height: 60px;
        margin: 10px 0;
    }
    
    .comparison-divider::before {
        top: 50%;
        left: 0;
        right: 0;
        width: auto;
        height: 2px;
        background: linear-gradient(to right, 
            rgba(221, 87, 70, 0.1), 
            rgba(221, 87, 70, 0.6), 
            rgba(71, 147, 175, 0.6), 
            rgba(71, 147, 175, 0.1));
    }
    
    .key-difference {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .workflow-comparison {
        padding: 20px;
    }
    
    .comparison-column {
        padding: 15px;
    }
    
    .comparison-item {
        gap: 10px;
    }
    
    .comparison-icon {
        width: 35px;
        height: 35px;
    }
    
    .key-difference {
        padding: 15px;
    }
    
    .key-difference-icon {
        width: 50px;
        height: 50px;
    }
    
    .key-difference p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .workflow-comparison h3 {
        font-size: 1.3rem;
    }
    
    .comparison-column h4 {
        font-size: 1.1rem;
    }
    
    .comparison-item p {
        font-size: 0.85rem;
    }
    
    .comparison-icon {
        width: 30px;
        height: 30px;
    }
    
    .comparison-icon i {
        font-size: 14px;
    }
    
    .vs-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .key-difference-icon {
        width: 40px;
        height: 40px;
    }
    
    .key-difference-icon i {
        font-size: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    from {
        box-shadow: 0 0 10px rgba(71, 147, 175, 0.7), 0 0 20px rgba(71, 147, 175, 0.5);
    }
    to {
        box-shadow: 0 0 15px rgba(71, 147, 175, 0.8), 0 0 30px rgba(71, 147, 175, 0.6);
    }
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary-blue) }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .slide-content {
        padding: 30px;
    }
    
    .title {
        font-size: 3rem;
    }
    
    .prompts-container {
        flex-direction: column;
    }
    
    .prompt-example {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .techniques-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .slide {
        padding: 20px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .intro-slide {
        flex-direction: column;
    }
    
    .profile-section {
        margin-bottom: 30px;
    }
    
    .daily-example {
        padding: 8px;
    }
    
    .daily-example p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 768px) {
    .slide {
        padding: 20px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .intro-slide {
        flex-direction: column;
    }
    
    .profile-section {
        margin-bottom: 30px;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .progress-bar {
        width: 150px;
    }
    
    .flowchart-container {
        flex-direction: column;
        align-items: center;
    }
    
    .flowchart-item {
        width: 120px;
        margin-bottom: 10px;
    }
    
    .flowchart-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .slide {
        padding: 10px;
    }
    
    .slide-content {
        padding: 15px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .profile-image-container {
        width: 200px;
        height: 200px;
    }
    
    .progress-bar {
        width: 100px;
    }
    
    .flowchart-item {
        width: 100px;
        padding: 10px;
    }
    
    .flowchart-icon {
        width: 45px;
        height: 45px;
    }
    
    .flowchart-icon i {
        font-size: 18px;
    }
    
    .flowchart-item p {
        font-size: 0.8rem;
    }
}

/* Slide 9 - Expectations Comparison Styles */
.expectations-comparison {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.expectations-comparison h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-blue);
    font-size: 1.8rem;
    text-shadow: var(--neon-glow);
}

.comparison-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.comparison-column {
    flex: 1;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.comparison-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.comparison-column h4 {
    text-align: center;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.4rem;
}

.before-ai h4 {
    color: var(--text-secondary);
}

.after-ai h4 {
    color: var(--primary-orange);
    text-shadow: var(--orange-glow);
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    transition: background-color 0.3s;
}

.comparison-item:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.comparison-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.before-ai .comparison-icon {
    background-color: rgba(71, 147, 175, 0.2);
    color: var(--primary-blue);
}

.after-ai .comparison-icon {
    background-color: rgba(255, 196, 112, 0.2);
    color: var(--primary-orange);
}

.comparison-icon i {
    font-size: 1.5rem;
}

.comparison-item p {
    margin: 0;
    font-size: 1rem;
}

.comparison-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.comparison-divider {
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.vs-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    box-shadow: var(--neon-glow);
}

.how-ai-bridges-gap {
    margin-top: 40px;
}

.bridge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.bridge-item {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.bridge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    background-color: rgba(30, 30, 30, 0.9);
}

.bridge-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-red);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.bridge-icon i {
    font-size: 2rem;
    color: white;
}

.bridge-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-orange);
}

.bridge-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.key-insight {
    margin-top: 40px;
    background-color: rgba(139, 50, 44, 0.3);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.insight-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-dark-red);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.insight-icon i {
    font-size: 1.8rem;
    color: white;
}

.key-insight p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.key-insight strong {
    color: var(--primary-orange);
}

/* Media queries for responsive design */
@media (max-width: 992px) {
    .bridge-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .comparison-container {
        flex-direction: column;
        align-items: center;
    }
    
    .comparison-divider {
        margin: 20px 0;
    }
    
    .comparison-column {
        width: 100%;
        max-width: 500px;
    }
    
    .key-insight {
        flex-direction: column;
        text-align: center;
    }
    
    .insight-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Slide 11: Future Outlook & Mindset Transformation */
.mindset-transformation {
    padding: 20px;
}

.mindset-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin: 30px 0;
}

.mindset-item {
    flex: 1;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 45%;
}

.mindset-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.mindset-item.outdated {
    border-left: 4px solid var(--primary-blue);
}

.mindset-item.adaptive {
    border-left: 4px solid var(--primary-orange);
}

.mindset-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.outdated .mindset-icon {
    background-color: rgba(71, 147, 175, 0.2);
    color: var(--primary-blue);
}

.adaptive .mindset-icon {
    background-color: rgba(255, 196, 112, 0.2);
    color: var(--primary-orange);
}

.mindset-icon i {
    font-size: 2rem;
}

.mindset-item h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.outdated h4 {
    color: var(--text-secondary);
}

.adaptive h4 {
    color: var(--primary-orange);
    text-shadow: var(--orange-glow);
}

.mindset-item ul {
    list-style-type: none;
    text-align: left;
    width: 100%;
}

.mindset-item ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.mindset-item ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
}

.outdated ul li::before {
    color: var(--primary-blue);
}

.adaptive ul li::before {
    color: var(--primary-orange);
}

.mindset-divider {
    display: flex;
    align-items: center;
    margin: 0 30px;
}

.transform-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--neon-glow);
}

.transform-arrow i {
    font-size: 1.8rem;
    color: white;
}

.examples-container {
    margin-top: 40px;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.example-item {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.example-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.example-item.daily {
    border-top: 4px solid var(--primary-blue);
}

.example-item.professional {
    border-top: 4px solid var(--primary-red);
}

.example-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.daily .example-icon {
    background-color: rgba(71, 147, 175, 0.2);
    color: var(--primary-blue);
}

.professional .example-icon {
    background-color: rgba(221, 87, 70, 0.2);
    color: var(--primary-red);
}

.example-icon i {
    font-size: 1.8rem;
}

.example-item h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.daily h4 {
    color: var(--primary-blue);
}

.professional h4 {
    color: var(--primary-red);
}

.example-item ul {
    list-style-type: none;
    text-align: left;
}

.example-item ul li {
    margin-bottom: 15px;
    line-height: 1.4;
}

.example-item ul li strong {
    color: var(--text-secondary);
    font-weight: 600;
}

.strategy-section {
    margin-top: 40px;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.strategy-item {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 4px solid var(--primary-orange);
}

.strategy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.strategy-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 196, 112, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    color: var(--primary-orange);
}

.strategy-icon i {
    font-size: 1.8rem;
}

.strategy-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-orange);
}

.strategy-item p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.strategy-item ul {
    list-style-type: none;
    text-align: left;
    width: 100%;
}

.strategy-item ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
    font-size: 0.9rem;
}

.strategy-item ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-orange);
}

/* Media queries for slide 11 responsiveness */
@media (max-width: 1200px) {
    .strategy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mindset-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .mindset-item {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .mindset-divider {
        margin: 20px 0;
    }
}
