/* IAXOV Branding Colors */
:root {
    --iaxov-blue: #2e6ab3;
    --iaxov-purple: #b92f8c;
    --iaxov-light-blue: #47a3df;
    --iaxov-gradient: linear-gradient(135deg, var(--iaxov-blue), var(--iaxov-purple));
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f5f5f7;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow: hidden;
}

/* Presentation Container */
.presentation-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Controls */
.controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: var(--box-shadow);
}

.control-btn {
    background: var(--iaxov-gradient);
    color: var(--text-light);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.control-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.control-btn:active {
    transform: translateY(0);
}

#slide-counter {
    font-weight: 600;
    color: var(--text-dark);
}

/* Slides Container */
.slides-container {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Individual Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
    background-color: white;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

/* Slide Content */
.slide-content {
    width: 100%;
    height: 100%;
    background-color: white;
    padding: 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--iaxov-gradient);
}

/* Title Slide */
.title-slide {
    text-align: center;
    background: var(--iaxov-gradient);
    color: var(--text-light);
    padding: 60px 40px;
}

.title-slide::before {
    display: none;
}

.logo-container {
    margin-bottom: 40px;
}

.logo {
    width: 120px;
    height: auto;
}

.title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.subtitle {
    font-size: 2rem;
    margin-bottom: 60px;
    font-weight: 400;
    opacity: 0.9;
}

.presenter-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.presenter-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
}

.photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.presenter-details {
    text-align: left;
}

.presenter-name {
    font-size: 1.5rem;
    font-weight: 600;
}

.presenter-title {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Regular Slides */
.slide-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--iaxov-blue);
    position: relative;
    display: inline-block;
}

.slide-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--iaxov-gradient);
    border-radius: 2px;
}

/* Content Box */
.content-box {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    margin-bottom: 20px;
    height: calc(100% - 80px); /* Subtract the title height and margin */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--iaxov-purple);
}

.content-box ul {
    list-style-type: none;
    margin-left: 20px;
}

.content-box li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    font-size: 1.2rem;
}

.content-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--iaxov-gradient);
    border-radius: 50%;
}

.content-box p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.2rem;
}

/* Two Column Layout */
.two-column {
    display: flex;
    gap: 30px;
}

.column {
    flex: 1;
}

/* Analogy Container */
.analogy-container {
    display: flex;
    gap: 30px;
    align-items: center;
}

.analogy-image {
    flex: 1;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.analogy-text {
    flex: 1;
}

/* House Framing Illustration */
.house-framing-illustration {
    position: relative;
    width: 100%;
    height: 220px;
}

.robot {
    position: absolute;
    width: 60px;
    height: 90px;
    background-color: var(--iaxov-light-blue);
    border-radius: 10px;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.robot::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: var(--iaxov-light-blue);
    border-radius: 50%;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.house-frame {
    position: absolute;
    width: 160px;
    height: 120px;
    border: 6px solid var(--iaxov-purple);
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.house-frame::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 90px solid transparent;
    border-right: 90px solid transparent;
    border-bottom: 60px solid var(--iaxov-purple);
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

/* Building Blocks */
.building-blocks {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.block {
    text-align: center;
    width: 120px;
}

.block-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: var(--iaxov-gradient);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
}

.block-text {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Document Icon */
.document-icon::before {
    content: '📄';
}

/* Market Icon */
.market-icon::before {
    content: '📊';
}

/* SMART Goals Icon */
.smart-icon::before {
    content: '🎯';
}

/* Execution Icon */
.execution-icon::before {
    content: '📋';
}

/* Key Points */
.key-points {
    background-color: rgba(46, 106, 179, 0.1);
    padding: 25px;
    border-radius: 8px;
    border-left: 6px solid var(--iaxov-blue);
    margin-top: 40px;
    font-size: 1.2rem;
}

.key-points p {
    margin-bottom: 15px;
}

.key-points strong {
    color: var(--iaxov-blue);
    font-size: 1.3rem;
}

/* Mentor Container */
.mentor-container {
    display: flex;
    gap: 30px;
    align-items: center;
}

.mentor-image {
    flex: 1;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mentor-text {
    flex: 1;
}

/* Blueprint Illustration */
.blueprint-illustration {
    position: relative;
    width: 100%;
    height: 220px;
}

.blueprint {
    position: absolute;
    width: 160px;
    height: 100px;
    background-color: #e6f7ff;
    border: 2px solid var(--iaxov-blue);
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
}

.blueprint::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: repeating-linear-gradient(
        0deg,
        var(--iaxov-light-blue),
        var(--iaxov-light-blue) 1px,
        transparent 1px,
        transparent 8px
    );
}

.robot-apprentice {
    position: absolute;
    width: 50px;
    height: 80px;
    background-color: var(--iaxov-purple);
    border-radius: 8px;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.robot-apprentice::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: var(--iaxov-purple);
    border-radius: 50%;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
}

/* Q&A Section */
.qa-section {
    margin-top: 40px;
}

.qa-item {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    background-color: rgba(185, 47, 140, 0.05);
    padding: 15px;
    border-radius: 8px;
}

.question {
    flex: 2;
    font-weight: 600;
    padding-right: 20px;
    font-size: 1.2rem;
}

.answer {
    flex: 1;
    font-weight: 700;
    color: var(--iaxov-purple);
    font-size: 1.4rem;
}

/* CTA Container */
.cta-container {
    display: flex;
    gap: 30px;
    align-items: center;
}

.cta-image {
    flex: 1;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-text {
    flex: 1;
}

/* Workshop Illustration */
.workshop-illustration {
    position: relative;
    width: 100%;
    height: 300px;
}

.workshop-illustration::before {
    content: '🤝';
    position: absolute;
    font-size: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Applications List */
.applications-list {
    margin-bottom: 30px;
}

.applications-list li {
    margin-bottom: 20px;
}

.applications-list ul {
    margin-top: 10px;
    margin-left: 30px;
}

.applications-list ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.applications-list a {
    color: var(--iaxov-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-speed);
}

.applications-list a:hover {
    color: var(--iaxov-purple);
    text-decoration: underline;
}

/* Privacy List */
.privacy-list {
    margin-bottom: 30px;
}

.privacy-list li {
    margin-bottom: 15px;
    font-size: 1.2rem;
    position: relative;
    padding-left: 30px;
}

.privacy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--iaxov-gradient);
    border-radius: 50%;
}

/* Contact Info */
.contact-info {
    margin-top: 40px;
    padding: 25px;
    background-color: rgba(185, 47, 140, 0.1);
    border-radius: 8px;
    border-left: 6px solid var(--iaxov-purple);
    text-align: center;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-info a {
    color: var(--iaxov-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: color var(--transition-speed);
}

.contact-info a:hover {
    color: var(--iaxov-purple);
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .title {
        font-size: 2.8rem;
    }
    
    .subtitle {
        font-size: 1.6rem;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .analogy-container,
    .mentor-container,
    .cta-container {
        flex-direction: column;
    }
    
    .two-column {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding: 30px 20px;
    }
    
    .title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    .presenter-info {
        flex-direction: column;
        text-align: center;
    }
    
    .presenter-details {
        text-align: center;
    }
    
    .controls {
        padding: 8px 15px;
    }
    
    .control-btn {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}
